' Test 4 Arithmetics.txt b+ 2021-02-17
a = trim[1]
b = trim[2]
c = trim[3]
d = trim[4]
e = trim[5]
' yeah when I get to arrays...
f = trim[a[e,a]]
g = trim[a[e,b]]
h = trim[a[e,c]]
i = trim[a[e,d]]
j = trim[x[e,2]]

.  a = ;a;/  b = ;b;/  c = ;c;/  d = ;d;/  e = ;e;/  f = ;f;/  g = ;g;/  h = ;h;/  i = ;i;/  j = ;j
result = a[a, b, c, d, e, f, g, h, i, j]
. a + b +... + j = ;result
result = x[a,b,c,d,e,f,g,h,i,j]
. a * b *... * j = ;result
result = bnd[a,b,c,d,e,f,g,h,i,j]
. a, b, c,... concatenated = ;result
.
a = 7
. a = ;a
.
a = a[a,3.3]
. a += 3.3 is ;a
. /  note: += function removed use a(a1, a2, a3...)   a is for add.
.
a = s[a,3.3]
. a -= 3.3 is ;a
. /  note: -= function removed use s(a1, a2)          s is for subtract.
.  
a = x[a,3.3]
. a *= 3.3 is ;a
. /  note: *= function removed use x(a1, a2, a3...)   x is for multiply, m is for modulus.
.
a = d[a,3.3]
. a /= 3.3 is ;a
. /  note: /= function removed use d(a1, a2)          d is for divide.
.
. Note: () have been substituted in for Square Brackets used for SFunctions only.